@tailwind components
from
@tailwind
@tailwind utilities
をいくつかまとめたものをcomponentと呼んでるっぽい
例えば
.card
とか
code:css
.card {
background-color: theme('colors.white');
border-radius: theme('borderRadius.lg');
padding: theme('spacing.6');
box-shadow: theme('boxShadow.xl');
}
実装箇所
https://github.com/tailwindlabs/tailwindcss/blob/2d40d0b30a818dd49a6fe3672ead0b54fe531c53/src/corePlugins.js#L479-L564
.container
というクラスを定義してるだけぽい